home *** CD-ROM | disk | FTP | other *** search
Makefile | 2000-01-12 | 619 b | 22 lines |
- AUTOMAKE_OPTIONS = foreign
-
- bin_PROGRAMS = server
-
- server_SOURCES = auth.c config.c convert.c clientdata.c debug.c error.c \
- exit.c init.c io.c main.c misc.c parse.c ping.c \
- sighandlers.c sockets.c ssl.c stream.c
-
- # Use this if we want to define it ourselves
- # CC = gcc
-
- # Use this to define our own definitions
- DEFS1 = $(DEFS) $(LDEFS)# -DNOSSL# -DDEBUG
-
- INCS = -I../include -I../../SSL/include -I/usr/local/ssl/include
-
- # (we use our own CLFAGS because autoconf uses -O2)
- CFLAGS = -Wall -g -pedantic# -posix -ansi
- COMPILE = $(CC) $(DEFS1) $(INCS) $(CFLAGS)
-
- CLEANFILES = log
-